std::vector::data

From Cppreference

Jump to: navigation, search
​T* data();

const T* data() const;

Returns pointer to the underlying array serving as element storage. Specifically the pointer is such that range [data(); data() + size()) is a valid.

Contents

Parameters

(none)

Return value

pointer to the underlying element storage.

Complexity

constant.

See also

front
access the first element
(public member function)
back
access the last element
(public member function)
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox
In other languages